home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000709_mackay@cs.washington.edu_Sat Jul 2 04:35:37 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  7KB

  1. Received: from june.cs.washington.edu by cs.umb.edu with SMTP id AA29555
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Sat, 2 Jul 1994 14:35:39 -0400
  3. Return-Path: <mackay>
  4. Received: (mackay@localhost) by june.cs.washington.edu (8.6.9/7.2ju) id LAA07311; Sat, 2 Jul 1994 11:35:37 -0700
  5. Date: Sat, 2 Jul 1994 11:35:37 -0700
  6. From: mackay@cs.washington.edu (Pierre MacKay)
  7. Message-Id: <199407021835.LAA07311@june.cs.washington.edu>
  8. To: tex-k@cs.umb.edu, TWG-TDS@SHSU.edu
  9. Subject: making up some packages.
  10.  
  11.  
  12. I have extracted that part of Sebastian's larger work
  13. on postscript fonts that gives you access to the
  14. ubiquitous 35-font package.  
  15.  
  16. I propose to make up a package called lw35nfss
  17. with the following structure
  18.  
  19.  
  20. lw35nfss/
  21.     INSTALL                    % instructions
  22.     tex/latex/psnfss            % *.sty and *.fd
  23.     fonts/adobe/times
  24.            /helvetic            % tfm, vf, and afm
  25.              .            % but what to do about
  26.             .            % afm versions?  Better
  27.             .            % stick with what the
  28.            /zapfding            % tfms are based on.
  29.     /dvips                    % *.map and config.*
  30.                         % for all faces in the set.
  31.  
  32. I don't know how other systems will handle it, but in Unix
  33. it will be possible to cd to $TEXMFROOT and tar out
  34. all three directories in the package in place.
  35.  
  36. INSTALL will have to include a warning about moving latex209-style
  37. style files from $TEXMFROOT/dvips to $TEXMFROOT/latex209/dvips
  38.  
  39. Since this affects the way the final UnixTeX distribution is organized
  40. I have also made the following changes in two makefiles
  41.  
  42. First, in web2c/tex/Makefile.in
  43.  
  44. >  *** Makefile.in.dist    Thu Feb  3 04:48:36 1994
  45. >  --- Makefile.in    Sat Jul  2 10:48:45 1994
  46. >  ***************
  47. >  *** 58,64 ****
  48. >    
  49. >    # The formats we know how to make.
  50. >    fmts = amslatex.fmt amstex.fmt etex.fmt inrstex.fmt latex.fmt \
  51. >  !   picplus.fmt slitex.fmt tex.fmt texinfo.fmt 
  52. >    
  53. >    # And how to make them.
  54. >    initex = TEXPOOL=. ./initex
  55. >  --- 58,64 ----
  56. >    
  57. >    # The formats we know how to make.
  58. >    fmts = amslatex.fmt amstex.fmt etex.fmt inrstex.fmt latex.fmt \
  59. >  !   picplus.fmt tex.fmt texinfo.fmt # slitex.fmt 
  60. >    
  61. >    # And how to make them.
  62. >    initex = TEXPOOL=. ./initex
  63. >  ***************
  64. >  *** 122,131 ****
  65. >    # 4) a ``preload'' file, (I use preload.ori),
  66. >    # 5) and a ``basefont'' file.  (I use basefont).
  67. >    # How automatic, huh?  I can hardly wait for LaTeX 3.
  68. >  ! amslatex.fmt: initex
  69. >  !     $(initex) lplain \\dump
  70. >  !     mv lplain.fmt amslatex.fmt
  71. >  !     mv lplain.log amslatex.log
  72. >    
  73. >    # As of AMSTeX 2.1, the initialization file is named `amstex.ini'.
  74. >    # Because it explicitly reads plain.tex, we cannot use &./tex; that
  75. >  --- 122,131 ----
  76. >    # 4) a ``preload'' file, (I use preload.ori),
  77. >    # 5) and a ``basefont'' file.  (I use basefont).
  78. >    # How automatic, huh?  I can hardly wait for LaTeX 3.
  79. >  ! #amslatex.fmt: initex
  80. >  ! #    $(initex) lplain \\dump
  81. >  ! #    mv lplain.fmt amslatex.fmt
  82. >  ! #    mv lplain.log amslatex.log
  83. >    
  84. >    # As of AMSTeX 2.1, the initialization file is named `amstex.ini'.
  85. >    # Because it explicitly reads plain.tex, we cannot use &./tex; that
  86. >  ***************
  87. >  *** 142,159 ****
  88. >    inrstex.fmt: initex
  89. >        $(initex) inrstex \\dump
  90. >    
  91. >    latex.fmt: initex
  92. >  !     $(initex) lplain \\dump
  93. >  !     mv lplain.fmt latex.fmt
  94. >  !     mv lplain.log latex.log
  95. >    
  96. >    picplus.fmt: tex.fmt
  97. >        $(initex) \&./tex picplus \\dump
  98. >    
  99. >  ! slitex.fmt: initex
  100. >  !     $(initex) splain \\dump
  101. >  !     mv splain.fmt slitex.fmt
  102. >  !     mv splain.log slitex.log
  103. >    
  104. >    tex.fmt: initex
  105. >        $(initex) plain \\dump
  106. >  --- 142,165 ----
  107. >    inrstex.fmt: initex
  108. >        $(initex) inrstex \\dump
  109. >    
  110. >  + #latex.fmt: initex
  111. >  + #    $(initex) lplain \\dump
  112. >  + #    mv lplain.fmt latex.fmt
  113. >  + #    mv lplain.log latex.log
  114. >  + # The dump command for LaTeX2e is included
  115. >  + # in latex.ltx.  This probably provides all
  116. >  + # you need for amslatex as well.
  117. >  + 
  118. >    latex.fmt: initex
  119. >  !     $(initex) latex.ltx
  120. >    
  121. >    picplus.fmt: tex.fmt
  122. >        $(initex) \&./tex picplus \\dump
  123. >    
  124. >  ! #slitex.fmt: initex
  125. >  ! #    $(initex) splain \\dump
  126. >  ! #    mv splain.fmt slitex.fmt
  127. >  ! #    mv splain.log slitex.log
  128. >    
  129. >    tex.fmt: initex
  130. >        $(initex) plain \\dump
  131. >  ***************
  132. >  *** 279,288 ****
  133. >        rm -f *.o $(program) $(lib) $(programs)
  134. >    
  135. >    clean:: mostlyclean
  136. >  !     rm -f *.dvi *.pool
  137. >    
  138. >    distclean:: clean
  139. >  !     rm -f Makefile config.status c-auto.h
  140. >    
  141. >    # Although we can remake configure and c-auto.h.in, we don't remove
  142. >    # them, since many people may lack Autoconf.  Use configclean for that.
  143. >  --- 285,294 ----
  144. >        rm -f *.o $(program) $(lib) $(programs)
  145. >    
  146. >    clean:: mostlyclean
  147. >  !     rm -f *.dvi
  148. >    
  149. >    distclean:: clean
  150. >  !     rm -f Makefile config.status c-auto.h *.p *.pool
  151. >    
  152. >    # Although we can remake configure and c-auto.h.in, we don't remove
  153. >    # them, since many people may lack Autoconf.  Use configclean for that.
  154.  
  155. And in dvipsk/PSfonts/Makefile.in (Sorry, this is not a diff.)
  156.   
  157. >  oldlatexinputdir = $(texmf_prefix)/latex209
  158. >  psmacrodir = $(oldlatexinputdir)/dvips
  159. >  # These were the original macros, before LaTeX2e
  160. >  # texinputdir = $(texmf_prefix)/tex
  161. >  # psmacrodir = $(texinputdir)/dvips
  162.  
  163. I want to pass this by interested parties before I actually do it.
  164. The next thing is to repackage ibygrk to conform as closely as possible
  165. with the TDS recommendations.  If I do that, I should also do the
  166. same for Levy's stuff (I am in correspondence with him at present)
  167.  
  168. %=======================================================================%
  169. |                             N O T I C E                               |
  170. |  The University of Washington has ordered us to close the Northwest   |
  171. |  Computing Support Center, and to terminate the official support      |
  172. |  of UnixTeX.  Although the termination was final as of June 14, 1994  |
  173. |  we will try unofficially to provide some services for the next few   |
  174. |  months.  Unfortunately Elizabeth will not be available by phone,     |
  175. |  and I cannot be near my phone in any regular sense. Please note      |
  176. |  the changes in address and telephone number.  There is no Northwest  |
  177. |  Computing Support Center any longer.                                 |
  178. |                                                                       |
  179. %=======================================================================%
  180. Email concerned with UnixTeX distribution software may be sent 
  181. to:    UnixTeX@u.washington.edu            Elizabeth Tachikawa
  182. or to:  mackay@cs.washington.edu        Pierre A. MacKay
  183. Smail:  Department of Classics            Emeritus Druid for
  184.     Denny Hall, Mail Stop DH-10        Unix-flavored TeX
  185.     University of Washington
  186.     Seattle, WA 98195
  187.     (206) 543-2268 (No call forwarding, no message recorder)
  188.  
  189. North American academic institutions have been taken over by MBA 
  190. bean-counters and genuine or wannabe industry CEOs.  Just when 
  191. American industry is beginning to doubt the wisdom of autocratic 
  192. pyramidal dictatorship, most American Universities have adopted 
  193. that style of management, which is nice for refugees from defense 
  194. industry boardrooms, but rather sickening for the rest of us.